1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
"use client";
import styles from "./info.module.css";
import Link from "next/link";
import { storeLocal } from "../../history/storeData";
export default function Buttons({ content: data }) {
let hasValidLinks = false;
function store_to_local(title, chapter, volume, image, id, id2) {
let data = {
title: title,
chapter: chapter,
volume: volume,
image: image,
id: id,
mangaId: id2,
};
storeLocal(data);
}
return (
<div className={styles.ChapterContainer}>
{data.chapters &&
data.chapters.map((item, index) => {
if (item.pages !== 0) {
hasValidLinks = true;
return (
<Link
key={index}
href={{
pathname: `/manga/info/read/${item.id}`,
}}
onClick={() => {
store_to_local(
data.title.english || data.title.romaji,
parseInt(item.chapterNumber),
parseInt(item.volumeNumber),
data.image,
item.id,
data.id
);
}}
>
<button key={index}>
<div>
<p>Chapter: {item.chapterNumber}</p>
<p>Volume: {item.volumeNumber}</p>
</div>
</button>
</Link>
);
}
})}
{!hasValidLinks && (
<p className={styles.linksNotFound}>Links not found</p>
)}
</div>
);
}
|